Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 | import { apiService } from './api';
import { ApiResult } from '@/types';
import { Device, RegisterDeviceRequest, DeviceConnectionCheck } from '@/types';
import { API_ENDPOINTS } from '@/constants/api';
export interface DeviceWithUser {
id: number;
user_id: number;
username: string;
device_id: string;
device_name: string;
last_active: string;
created_at: string;
max_devices: number;
}
export interface DeviceStats {
total_devices: number;
active_devices: number;
users_with_devices: number;
users_at_limit: number;
total_capacity: number;
avg_devices_per_user: number;
utilization: number;
devices_by_role: Record<string, number>;
devices_by_user?: Array<{
user_id: number;
username: string;
device_count: number;
max_devices: number;
}>;
}
class DeviceService {
/**
* Get all devices for admin view
*/
async getAllDevices(params?: {
user_id?: number;
active_only?: boolean;
page?: number;
limit?: number;
search?: string;
}): Promise<ApiResult<{
devices: DeviceWithUser[];
total: number;
page: number;
limit: number;
total_pages: number;
}>> {
try {
const result = await apiService.get<{
devices: DeviceWithUser[];
total: number;
page: number;
limit: number;
total_pages: number;
}>(API_ENDPOINTS.ADMIN.DEVICES, { params });
return result;
} catch {
return {
success: false,
error: {
error: 'Devices Fetch Failed',
details: 'Failed to fetch devices',
timestamp: new Date().toISOString()}
};
}
}
/**
* Get devices for current user
*/
async getUserDevices(): Promise<ApiResult<{
devices: Device[];
max_devices: number;
}>> {
try {
const result = await apiService.get<{
devices: Device[];
max_devices: number;
}>('/api/devices');
return result;
} catch {
return {
success: false,
error: {
error: 'User Devices Fetch Failed',
details: 'Failed to fetch user devices',
timestamp: new Date().toISOString()}
};
}
}
/**
* Register a new device for current user
*/
async registerDevice(request: RegisterDeviceRequest): Promise<ApiResult<{ success: boolean; message: string }>> {
try {
const result = await apiService.post<{ success: boolean; message: string }>('/api/devices', request);
return result;
} catch {
return {
success: false,
error: {
error: 'Device Registration Failed',
details: 'Failed to register device',
timestamp: new Date().toISOString()}
};
}
}
/**
* Remove a device for current user
*/
async removeDevice(deviceId: string): Promise<ApiResult<{ success: boolean; message: string }>> {
try {
const result = await apiService.delete<{ success: boolean; message: string }>(`/api/devices/${deviceId}`);
return result;
} catch {
return {
success: false,
error: {
error: 'Device Removal Failed',
details: 'Failed to remove device',
timestamp: new Date().toISOString()}
};
}
}
/**
* Remove a device for specific user (admin/reseller)
*/
async removeUserDevice(userId: number, deviceId: string): Promise<ApiResult<{ success: boolean }>> {
try {
const result = await apiService.delete<{ success: boolean }>(`/api/admin/users/${userId}/devices/${deviceId}`);
return result;
} catch {
return {
success: false,
error: {
error: 'Device Removal Failed',
details: 'Failed to remove user device',
timestamp: new Date().toISOString()}
};
}
}
/**
* Remove and blacklist a device for specific user (admin/reseller)
*/
async removeAndBlacklistUserDevice(userId: number, deviceId: string): Promise<ApiResult<{ success: boolean }>> {
try {
const result = await apiService.delete<{ success: boolean }>(`/api/admin/users/${userId}/devices/${deviceId}/remove-and-blacklist`);
return result;
} catch {
return {
success: false,
error: {
error: 'Device Removal and Blacklist Failed',
details: 'Failed to remove and blacklist user device',
timestamp: new Date().toISOString()}
};
}
}
/**
* Blacklist a device for specific user (admin/reseller) without removing it
*/
async blacklistUserDevice(userId: number, deviceId: string): Promise<ApiResult<{ success: boolean }>> {
try {
const result = await apiService.post<{ success: boolean }>(`/api/admin/users/${userId}/devices/${deviceId}/blacklist`, {});
return result;
} catch {
return {
success: false,
error: {
error: 'Device Blacklist Failed',
details: 'Failed to blacklist user device',
timestamp: new Date().toISOString()}
};
}
}
/**
* Check if device can connect
*/
async checkDeviceConnection(deviceId: string): Promise<ApiResult<DeviceConnectionCheck>> {
try {
const result = await apiService.get<DeviceConnectionCheck>(`/api/devices/${deviceId}/check`);
return result;
} catch {
return {
success: false,
error: {
error: 'Device Check Failed',
details: 'Failed to check device connection',
timestamp: new Date().toISOString()}
};
}
}
/**
* Get device statistics (admin only)
*/
async getDeviceStats(): Promise<ApiResult<DeviceStats>> {
try {
const result = await apiService.get<{stats: DeviceStats, success: boolean}>(API_ENDPOINTS.ADMIN.DEVICE_STATS);
if (result.success && result.data.stats) {
return {
success: true,
data: result.data.stats
};
}
return {
success: false,
error: {
error: 'Device Stats Fetch Failed',
details: 'Invalid response format',
timestamp: new Date().toISOString()}
};
} catch {
return {
success: false,
error: {
error: 'Device Stats Fetch Failed',
details: 'Failed to fetch device statistics',
timestamp: new Date().toISOString()}
};
}
}
/**
* Force disconnect a device (admin only)
*/
async forceDisconnectDevice(userId: number, deviceId: string): Promise<ApiResult<{ success: boolean }>> {
try {
const result = await apiService.post<{ success: boolean }>(`/api/admin/devices/${deviceId}/disconnect`, {});
return result;
} catch {
return {
success: false,
error: {
error: 'Device Disconnect Failed',
details: 'Failed to disconnect device',
timestamp: new Date().toISOString()}
};
}
}
/**
* Update device activity (internal use)
*/
async updateDeviceActivity(deviceId: string): Promise<ApiResult<{ success: boolean }>> {
try {
const result = await apiService.put<{ success: boolean }>(`/api/devices/${deviceId}/activity`, {});
return result;
} catch {
return {
success: false,
error: {
error: 'Device Activity Update Failed',
details: 'Failed to update device activity',
timestamp: new Date().toISOString()}
};
}
}
/**
* Get devices for specific user (admin/reseller)
*/
async getUserDevicesById(userId: number): Promise<ApiResult<Device[]>> {
try {
const result = await apiService.get<Device[]>(`/api/admin/users/${userId}/devices`);
return result;
} catch {
return {
success: false,
error: {
error: 'User Devices Fetch Failed',
details: 'Failed to fetch user devices',
timestamp: new Date().toISOString()}
};
}
}
}
export const deviceService = new DeviceService();
|